home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Super Platinum 8
/
Shareware Super Platinum 8.iso
/
mac
/
PROGTOOL
/
FGL304E.ZIP;1
/
EXPAS.ARJ
/
FGDOC
/
EXAMPLES
/
PASCAL
/
14-11.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1994-01-24
|
287 b
|
15 lines
program main;
uses fgmain, fgmisc;
begin
if (fg_initjoy(1) < 0) then
writeln('Joystick 1 not available.')
else
writeln('Joystick 1 found.');
if (fg_initjoy(2) < 0) then
writeln('Joystick 2 not available.')
else
writeln('Joystick 2 found.');
end.